home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- // Borland C++ compatible random functions:
- //----------------------------------------------------------------------------
-
- #define randomize() srand ( time (NULL) )
- //#define random(num) (int)(((long)rand()*(num))/(RAND_MAX+1))
- #define random(num) (int)(((long)(rand()%65535)*(num))/(65535+1))
-
-